1 <?php
2     include(
"../includes/config.php");
3     session_start();
4     
if(isset($_SESSION['admin_login'])) {
5         
if($_SESSION['admin_login'] == true) {
6         }
7         
else {
8             header(
'Location:../index.php');
9         }
10     }
11     
else {
12         header(
'Location:../index.php');
13     }
14 ?>
15 <!DOCTYPE html>
16 <html>
17 <head>
18     <title> Admin: Home</title>
19     <link rel=
"stylesheet" href="../includes/main_style.css" >
20 </head>
21 <body>
22     <?php
23         include(
"../includes/header.inc.php");
24         include(
"../includes/nav_admin.inc.php");
25         include(
"../includes/aside_admin.inc.php");
26     ?>
27     <section>
28     </section>
29     <?php
30         include(
"../includes/footer.inc.php");
31     ?>
32 </body>
33 </html>


Gõ tìm kiếm nhanh...